home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
SPACE 1
/
SPACE - Library 1 - Volume 1.iso
/
apps
/
296
/
scrnhelp.jil
< prev
next >
Wrap
Text File
|
1988-08-23
|
1KB
|
51 lines
noop
/*
*
* This program is the property of Harvest Software Incorporated.
* Copyright (c) 1988 Harvest Software Inc.
*
* All rights reserved.
*
* Title : "SCRNHELP.JIL"
* Function: MONOVIEW help screens for strokes and shorts.
*
* Revised: 3-Feb-88 by LTH
*
* In order to use this file, you will need to have JIL2D (version 1B
* or higher) and the INIT2D.JIL file which accompanied this file which
* effectively updates JIL2D to version 1C.
*/
macro screen-menu (
menuid Screen;
if $MTST( == false) (
menu $MID Screen
(HELP) (hmsg Post the MONOVIEW Help menu;monhelp-menu)
(view .MON) (hmsg View a MONOVIEW file;readscrn MON)
(make .MON) (hmsg Create a MONOVIEW file;wrtscrn MON)
() noop
(view .PI3) (hmsg View a PI3 file;readscrn PI3)
(make .PI3) (hmsg Create a PI3 file;wrtscrn PI3);
)
else (cantpost)
)
macro monhelp-menu (
menuid Help;
if $MTST( == false) (
menu $MID Help
strokes (hmsg View mouse stroke commands;
doing HELP;read-mon strokes.mon)
() noop
unshifted (hmsg View unshifted key commands;
doing HELP;read-mon unshkey.mon)
shifted (hmsg View shifted key commands;
doing HELP;read-mon shiftkey.mon)
control (hmsg View control key commands;
doing HELP;read-mon ctrlkey.mon)
alternate (hmsg View alternate key commands;
doing HELP;read-mon altkey.mon);
)
else (cantpost)
)